From 314d47749a79d0382eea1b710456b038a1ac84c0 Mon Sep 17 00:00:00 2001 From: Peter Atashian Date: Thu, 11 Sep 2014 14:26:22 -0400 Subject: [PATCH] Allows bootstrapping win64 from win32 snapshot. Remove triple = 'i686-pc-mingw32' once win64 snapshot is made. Signed-off-by: Peter Atashian --- src/etc/dl-snapshot.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/etc/dl-snapshot.py b/src/etc/dl-snapshot.py index e831855fa..cb7748611 100644 --- a/src/etc/dl-snapshot.py +++ b/src/etc/dl-snapshot.py @@ -27,6 +27,9 @@ elif triple == 'x86_64-apple-darwin': me = mac64 elif triple == 'i686-pc-mingw32': me = win32 +elif triple == 'x86_64-w64-mingw32': + triple = 'i686-pc-mingw32' + me = win32 else: raise Exception("no snapshot for the triple: " + triple) -- 2.30.2